*{
    padding: 0px;
    margin: 0px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
body::-webkit-scrollbar{
    width: 0px;
}
.header{
    margin: 20px;
    display: flex;
    background-color: rgba(133, 133, 247, 0.671);
    box-shadow: 0px 0px 10px rgb(133, 133, 247);
    border-radius: 50px;
}
.header h2{
    text-align: center;
    height: fit-content;
    margin: auto;
    color: navy;
    font-weight: bolder;
    word-spacing: 3px;
}
.header img{
    height: 70px;
}
.page{
    box-shadow: 0px 0px 5px #000020;
    border-radius: 5px;
    margin-top: 10px;
    margin-left: 90px;
    margin-right: 50px;
    padding: 50px 20px;
    font-size: 18px;
    text-align: justify;
    font-family: verdana;
}
.page h3{
    text-align: center;
    margin-bottom: 30px;
    font-family: verdana;
}
.optional_span,.double_options{
    color: blue;
}
.radioType, .doc_type{
    color: red;
}
.page input{
    border: none;
    border-bottom: 1px dotted red;
    outline: none;
    font-size: 18px;
    color: navy;
}
input[type='date'], input[type='radio'], input[type='checkbox']{
    cursor: pointer;
}
.page .sub-header{
    font-weight: bold;
}
ol{
    padding: 20px;
}
ol li{
    padding: 10px;
}
.table_1{
    margin: auto;
    width: fit-content;
    text-align: center;
    border-spacing: 0px;
}
.table_1 tr td{
    padding: 5px;
}
.table tr td{
    padding: 10px 0px 10px 0px;
    text-align: left;
}
.adding_icon_1, .adding_icon_2, .adding_icon_3{
    cursor: pointer;
    font-weight: bold;
    font-size: large;
    border: none;
    background-color: red;
    border-radius: 15px;
    padding: 0px 5px;
}
.adding_icon_3{
    margin-left: 68%;
}
.sign{
    text-align: center;
    width: 100%;
}
.buttons_table{
    margin: auto;
    width: 89%;
    margin-left: 100px;
    text-align: center;
}
.buttons_table tr td button{
    padding: 10px 20px;
    border: none;
    background-color: orangered;
    border-radius: 5px;
    cursor: pointer;
    font-family: verdana;
    font-size: medium;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}
.buttons_table tr td button:hover{
    background-color: greenyellow;
}
@media screen and (max-width:914px){
    .header{
        margin: 10px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .header h2{
        font-weight: bold;
        font-size: medium;
        word-spacing: 0px;
    }
    .page{
        margin-left: 5px;
        margin-right: 5px;
    }
    .div_table{
        overflow: scroll;
    }
    .div_table::-webkit-scrollbar{
        width: 0px;
    }
    .sign{
        font-size: small;
    }
    .adding_icon_3{
        margin-left: 95%;
    }
    .buttons_table{
        margin: auto;
    }
    
}
@media print{
    .header{
        display: none;
    }
    .page{
        border: none;
        box-shadow: none;
        margin: auto;
        margin-top: 620px;
        width: 900px;
    }
    .buttons_table{
        display: none;
    }
}